home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / exchange_dos.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  86 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10558);
  10.  script_bugtraq_id(1869);
  11.  script_cve_id("CVE-2000-1006");
  12.  script_version ("$Revision: 1.12 $");
  13.  name["english"] = "Exchange Malformed MIME header";
  14.  name["francais"] = "En-tete MIME mal formΘe";
  15.  script_name(english:name["english"],
  16.           francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. The remote Exchange server seems to be vulnerable to a flaw that
  20. lets malformed MIME headers crash it.
  21.  
  22. *** Nessus did not actually test for these flaws - it just relied
  23. *** on the banner to identify them. Therefore, this warning may be
  24. *** a false positive - especially since the banner DOES NOT CHANGE
  25. *** if the patch has been applied
  26.  
  27. The full testing methodology is available at http://online.securityfocus.com/archive/1/144494
  28.  
  29. Solution : See http://www.microsoft.com/technet/security/bulletin/ms00-082.mspx
  30. Risk factor : High";
  31.  
  32.  desc["francais"] = "
  33. Le serveur Exchange distant semble etre vulnΘrable α un problΦme
  34. qui permettrait α des entetes MIME mal formΘe de le faire planter.
  35.  
  36.  
  37. *** Nessus ne s'est fiΘ qu'a la banniΦre de ce service, donc il 
  38. *** s'agit peut etre d'une fausse alerte - d'autant plus que
  39. *** la baniΦre de ce service ne CHANGE PAS si le patch a ΘtΘ appliquΘ
  40.  
  41. Solution :  http://www.microsoft.com/technet/security/bulletin/MS00-082.mspx
  42. Facteur de risque : ElevΘ";
  43.  
  44.  
  45.  
  46.  
  47.  script_description(english:desc["english"],
  48.               francais:desc["francais"]);
  49.             
  50.  
  51.  summary["english"] = "Checks the remote banner";
  52.  summary["francais"] = "VΘrifie la banniΦre distante";
  53.  script_summary(english:summary["english"],
  54.           francais:summary["francais"]);
  55.  
  56.  script_category(ACT_GATHER_INFO);
  57.  
  58.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  59.            francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  60.  
  61.  family["english"] = "Denial of Service";
  62.  family["francais"] = "DΘni de service";
  63.  script_family(english:family["english"], francais:family["francais"]);
  64.  script_dependencie("find_service.nes", "sendmail_expn.nasl");
  65.  script_exclude_keys("SMTP/wrapped");
  66.  script_require_ports("Services/smtp", 25);
  67.  exit(0);
  68. }
  69.  
  70.  
  71.  
  72. include("smtp_func.inc");
  73.  
  74. port = get_kb_item("Services/smtp");
  75. if(!port)port = 25;
  76.  
  77. if(get_port_state(port))
  78. {
  79.  banner = get_smtp_banner(port:port);
  80.  if(!banner)exit(0);
  81.  if(ereg(string:banner,
  82.        pattern:".*Microsoft Exchange Internet Mail Service 5\.5\.((1[0-9]{0,3})|(2(([0-5][0-9]{2})|(6(([0-4][0-9])|(50\.(([0-1][0-9])|(2[0-1])))))))).*"))
  83.         security_hole(port);
  84.  
  85. }
  86.